home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Software of the Month Club / Amiga Latest & Greatest Volume 234 (1995)(SOMC)(Disk 5 of y)[SMCxxxC30Ix].zip / Amiga Latest & Greatest Volume 234 (1995)(SOMC)(Disk 5 of y)[SMCxxxC30Ix].adf / PhxAss430.readme < prev   
Text File  |  1996-03-13  |  5KB  |  91 lines

  1. Short:    PhxAss V4.30 68xxx Macro Assembler
  2. Author:   frank@phoenix.owl.de (Frank Wille)
  3. Uploader: frank@phoenix.owl.de
  4. Version:  4.30
  5. Type:     dev/asm
  6. Replaces: dev/asm/PhxAss426*
  7. Requires: OS2.04
  8.  
  9. PhxAss V4.30 is a highly optimizing macro assembler for Motorola's 680x0
  10. CPUs, 6888x FPUs and 68851 MMU (of course, the 030, 040 and 060 MMUs are
  11. also supported). It requires OS2.04 (V37) and 1 MB RAM as minimum.
  12.  
  13. Most important features:
  14. o Fast: 15000-30000 lines per minute with standard Amigas, 50000-350000
  15.   with A4000/040.
  16. o Resident.
  17. o Symbolic and Source Level Debugging. Possibility to enable Source
  18.   Level Debugging for high level languages too. 
  19. o Automatic generation of executables (if possible).
  20. o Creates relocatable Amiga-DOS objects or absolute code (written into
  21.   a file (raw or Motorola S-Format), into memory or directly onto disk).
  22. o Small Code and Small Data support (also support for __MERGED sections).
  23. o Listing file, Cross Reference Listing, Equates file.
  24. o Complete floating point support: You may use complex floating point
  25.   expressions, including float functions (sine, logarithm, square root,
  26.   power, etc.), everywhere in your source, e.g. defining float EQUates or
  27.   SETs.
  28. o Switches for nine different optimizations.
  29. o Locale symbols (xxx$ and .xxx type).
  30. o Up to 36 macro parameters.
  31. o Support for Motorola's old and new operand style (even in 68000 mode).
  32. o locale.library usage (english, german, swedish, italian, danish,
  33.   hungarian and french ).
  34. o Nearly all directives of the most popular assemblers like Seka, DevPac or
  35.   AS (Aztec) are supported. Example: INCBIN, INCDIR, CODE_C, REPT, RS,
  36.   RSRESET, EQUR, REG, OFFSET, XDEF, XREF, PUBLIC, ...
  37. o Further development and support is guaranteed for years, because I'll
  38.   *never* change my system.
  39. o Finally: Although Shareware, there are no disabled functions in PhxAss!
  40.  
  41. You will find four different versions of PhxAss in this distribution:
  42. 1. PhxAss: The standard 680x0,FPU,MMU macro assembler.
  43. 2. SmallPhxAss: This is a 68000-only version without floating point support.
  44. 3. FreePhxAss: This program is FREEWARE! It is intended for developers of
  45.     PD-Compilers, who want to include PhxAss in their compiler package.
  46. 4. GigaPhxAss: Identical to PhxAss, but source codes are not limited to
  47.     65535 lines. Quite useful for assembling huge Reassembler outputs.
  48.  
  49.  
  50. CHANGES SINCE PHXASS V4.26 (last Aminet release):
  51.  
  52. Fixed Bugs:
  53. o The Forward Branch Optimization of B<cc>.L into B<cc>.W didn't work. 
  54. o FMOVEM.L <FPControlRegs> was four bytes longer in pass 2 than in pass 1.
  55. o DC.? '\' didn't work in pass 1 and moved the following labels by a
  56.   random amount of bytes.
  57. o CMP #x,#y didn't produce an error message.
  58. o The MOVEC registers MSP, ISP and MMUSR don't exist on an 68060.
  59. o The command line parameter 'SET' only allowed multiple definitions,
  60.   if all symbols were assigned a definite value by '='.
  61. o PC relative 020+ addressing modes include a format word behind the 
  62.   instruction word and must not contain an external symbol. This is, because
  63.   all linkers are calculating the distance value relative to the address
  64.   where this value would be inserted. But it should be relative to the
  65.   format word in this case. There is no official support for it, so I'm
  66.   forced to generate error messages for all addressing modes of this kind.
  67. o Removed a wrong error message for the addressing mode (<xrefsym>.L,An). 
  68.  
  69. New Features:
  70. o From now on a difference between two addresses, which are not from the 
  71.   code section, is regarded as absolute! With that all arithmetic and 
  72.   logic operations are allowed. Only for differences from code section,
  73.   the old constraints are valid.
  74. o Symbol names may additionally contain the following ascii characters:
  75.   192 - 214, 216 - 246 and 248 - 254. This includes for exmaple the german
  76.   umlauts.
  77. o MACHINE 68000 may be used to deactivate the PMMU mode.
  78. o In code sections CNOP uses NOP instructions, if an even amount of bytes 
  79.   is to be filled.
  80. o There are three new short cuts for the most common optimizations
  81.   because the old ones ('*' e.g.) could make problems in Makefiles.
  82.   OPT 1 = default, OPT 2 = OPT *, OPT 3 = OPT !
  83. o Optimizing a MOVEM instruction into MOVE affects the condition codes. For 
  84.   this specific optimization the new opt-flag 'D' was introduced, which 
  85.   may be set additionally to the 'M'-flag, if required.
  86. o Besides CODE_C, DATA_C and BSS_C, SECTION also supports the #?_F types.
  87. o New command line parameters: MACHINE, FPU and PMMU.
  88. o The new directive OUTPUT enables to specify the name of the destination
  89.   file (equivalent to the command line parameter 'TO' but with a higher
  90.   priority.
  91.